home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 October: Mac OS SDK / Dev.CD Oct 97 SDK1.toast / Development Kits (Disc 1) / QuickDraw GX / Programming Stuff / Sample Code / Graphics Samples / viewPort Mania ƒ / Prefix.mw68k.h < prev    next >
Encoding:
Text File  |  1996-03-20  |  572 b   |  17 lines  |  [TEXT/MMCC]

  1.  
  2. // The following two typedef's are to work around a bug in the ETO #15
  3. // Universal headers -- the headers only typedef float_t and double_t
  4. // for "applec" and "powerc".  When this is eventually fixed, these
  5. // lines generate "redefined type" errors.
  6.  
  7. #ifndef powerc
  8.     typedef long double float_t;
  9.     typedef long double double_t;
  10.  
  11.     // The following is required if using Metrowerks 68K (CW4).
  12.     // Otherwise, MetroWerks 68K expects (and uses what it thinks are)
  13.     // A0 result values instead of D0 ones.
  14.  
  15.     #pragma pointers_in_D0        //    Required for c-style toolbox glue.
  16. #endif
  17.